** INI File / Player Health **

The game default health is set to 200 idk if 200 or 100 but I noticed the health counteer show 200/200,
when the health reach 100/200 player die, and I set the trigger at 10/200, so to fix that I set the value to 110/200.

You can deal with 100/200 as 0/100, so if you want to make the last stand trigger at more health you set value
from 110 ~ 199 ( 10/99 ), I don't know if the max health can be increased so you can use the health counter mods

or just follow these intructions:

1- Open note pad or visual studio or any editor.
2- Create a file named " HealthCounter.cs "
3- Paste the following code inside the file:

using System;
using GTA;
using System.Windows.Forms;

public class HealthCounter : Script
{
    public HealthCounter()
    {
        Tick += OnTick;
        Interval = 100;
    }

    private void OnTick(object sender, EventArgs e)
    {
        Ped player = Game.Player.Character;

        if (player != null && player.IsAlive)
        {
            GTA.UI.Screen.ShowSubtitle("Health: " + player.Health.ToString(), 100);
        }
    }
}

4- Save file and place it inside your scripts folder ( In gta v )
5- launch the game and health counter will show.

You can refer to this code if your max health increased.